python code to convert all keys of dict into lowercase

35

python code to convert all keys of dict into lowercase -

my_dict = {'KEY1': "Hello", 'Key2': "World"} 
new_dict = dict((k.lower(), v) for k, v in my_dict .items()) 
print(new_dict

Comments

Submit
0 Comments